home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
Palettes
/
TTools
/
TToolsPalette
/
TToolsPalette.m
< prev
Wrap
Text File
|
1995-06-12
|
997b
|
37 lines
/* TToolsPalette.m
* Written By: Thomas Burkholder
*
* You may freely copy, distribute, and reuse the code in this example.
* NeXT disclaims any warranty of any kind, expressed or implied, as to its
* fitness for any particular use.
*/
#import "TToolsPalette.h"
@implementation TToolsPalette
- finishInstantiate
{
[self associateObject:switchView
type:IBViewPboardType with:switchViewCover];
[self associateObject:timerObject
type:IBObjectPboardType with:timerView];
[self associateObject:rankerView
type:IBViewPboardType with:rankerCover];
[self associateObject:listObject
type:IBObjectPboardType with:listCover];
[self associateObject:tBinderObject
type:IBObjectPboardType with:tBinderCover];
[self associateObject:sortedList
type:IBObjectPboardType with:sortedListCover];
[self associateObject:classAgent
type:IBObjectPboardType with:classAgentCover];
[self associateObject:stringAgent
type:IBObjectPboardType with:stringAgentCover];
return self;
}
@end